home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src.arc / TCPTIMER.C < prev    next >
C/C++ Source or Header  |  1989-08-11  |  1KB  |  48 lines

  1. /* TCP timeout routines */
  2. #include <stdio.h>
  3. #include "global.h"
  4. #include "mbuf.h"
  5. #include "timer.h"
  6. #include "netuser.h"
  7. #include "internet.h"
  8. #include "tcp.h"
  9.  
  10. /* Timer timeout */
  11. void
  12. tcp_timeout(p)
  13. void *p;
  14. {
  15.     register struct tcb *tcb;
  16.  
  17.     tcb = p;
  18.     if(tcb == NULLTCB)
  19.         return;
  20.  
  21.     /* Make sure the timer has stopped (we might have been kicked) */
  22.     stop_timer(&tcb->timer);
  23.  
  24.     switch(tcb->state){
  25.     case TIME_WAIT:        /* 2MSL timer has expired */
  26.         close_self(tcb,NORMAL);
  27.         break;
  28.     default:        /* Retransmission timer has expired */
  29.         tcb->flags.retran = 1;    /* Indicate > 1  transmission */
  30.         tcb->backoff++;
  31.         tcb->snd.ptr = tcb->snd.una;
  32.         /* Reduce slowstart threshold to half current window */
  33.         tcb->ssthresh = tcb->cwind / 2;
  34.         tcb->ssthresh = max(tcb->ssthresh,tcb->mss);
  35.         /* Shrink congestion window to 1 packet */
  36.         tcb->cwind = tcb->mss;
  37.         tcp_output(tcb);
  38.     }
  39. }
  40. /* Backoff function - the subject of much research */
  41. int
  42. backoff(n)
  43. int n;
  44. {
  45.     return 1 << n;    /* Binary exponential back off */
  46. }
  47.  
  48.